Angie Rodriguez

La fecha y la hora son:

Propiedades DOM:

  1. Contenido de innerHTML de elemento identificado por id="h2"
  2. document.getElementById("h2").innerHTML = [La fecha y la hora son:]

  3. Contenido de outerHTML de elemento identificado por id="h1"
  4. escapeHtml(document.getElementById("h1").outerHTML) = [<h1 id="h1">Buenas tardes </h1>]

  5. Contenido de de la propiedad global: location.href
  6. location.href = [https://jaircastaneda.neocities.org/Modulo_3/Jscript/index.html]

  7. Contenido de de la propiedad global: location
  8. Object.getOwnPropertyNames(location) = [replace,assign,href,ancestorOrigins,origin,protocol,host,hostname,port,pathname,search,hash,reload,toString,valueOf]

  9. Contenido de de las propiedades globales: screen.width y screen.heigth
  10. screen.width = [1366] screen.height= [768]